@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");


/*voor alles in main*/
main {
    font-family: "Montserrat", sans-serif;
    height: auto;
    z-index: 2;
}

/*voor de game code*/
p {
    padding-left: 5vw;
}

/*li is voor lists*/
li {
    margin-left: 8vw;
}

/*om links wit te maken*/
a {
    color: white;
}

/*voor als je over de navbar knop hovered*/
.TextColorgradientButton:hover {
    color: rgb(146, 219, 244);
    cursor: pointer;
    background: none;
    animation: BackgroundFill 1s ease;
}

/*kleur van text*/
.TextColorgradient {
    color: white;
}

/*in general voor alles in body behalve header en navbar*/
.MainText {
    padding: 1vw;
    margin-top: 2vh;
    margin-left: 6vw;
    margin-right: 6vw;
    border-style: solid;
    border-radius: 1vh;
    border-width: 0.3vw;
    box-shadow: 5px 5px 30px 30px red;
    border-color: rgba(255, 255, 255, 0.3);
    background: black;
    z-index: 0;
}

/*voor text*/
.Text {
    background: rgb(146, 219, 244);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: ColorMove 4s ease infinite;
}

/*meer voor text*/
h1 {
    font-size: 3rem;
    font-weight: bold;
}

/*voor reflexie*/
.waviy {
    position: relative;
    -webkit-box-reflect: below -26px linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    font-size: 60px;
}

/*meer voor reflexie*/
.waviy span {
    font-family: "Montserrat", sans-serif;
    position: relative;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 5px 0.4px rgb(125, 125, 125);
}

/*voor het spel*/
canvas {
    z-index: 2;
    margin-left: 15vw;
    margin-top: 0,5vh;
    width: 70vw;
    height: auto;
    background-image: url("/project 2/Assets/for_games/Justin/castledef.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-width: 3px;
    border-radius: 1.5vh;
    box-shadow: 0px 0px 20px black;
}

.gametext {
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
}